home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Scheduling / Cassandra / Source / DayText.h < prev    next >
Encoding:
Text File  |  1991-08-18  |  472 b   |  30 lines

  1. //
  2. // DayText.h
  3. // Copyright (c) 1991 by Jiro Nakamura 
  4. // All rights reserved
  5. //
  6. //
  7. // RCS Information
  8. // Revision Number->    $Revision: 1.1 $
  9. // Last Revised->    $Date: 90/10/27 17:36:41 $
  10. //
  11.  
  12. #import <appkit/Text.h>
  13. #import <sys/time.h>        
  14.  
  15. @interface DayText:Text
  16. {
  17.     int     hour, minute;
  18.     struct tm today;
  19.     
  20.     BOOL militaryTime;
  21.     
  22.     int    priorityCutOff;
  23. }
  24.  
  25. - setDate: (struct tm*) date andPriority: (int) pr;
  26. - updateText;            // Update text
  27.  
  28. - defaultsDidChange: sender;
  29. @end
  30.